Range

Function

This API is used to get parameter range for Channel > Video Cover page.

Note:

The Range provides reference information for client UI input limits and API request limits. When sending Get and Set requests, the parameters must be strictly limited according to the Range, otherwise the request may be rejected by the device.

Request Message

None.

Sample:

POST /API/ChannelConfig/VideoCover/Range HTTP/1.1
{
	"version": "1.0",
	"data": {}
}

Response Message

Parameter Description

Table 1

ParameterRangeTypeDescription
channel“CH1”…”CH1x”
“IP_CH1”…” IP_CH1x”
“WIFI_CH1”…” WIFI_CH1x”
The number of channels depends on the capabilities of the device.
string arrayEach array bit represents a channel with a string.

Table 2

ParameterRangeTypeDescription
channel_infoJSON ObjectChannel Information JSON show as follow Table 3
channel_maxIntMaximum number of channels
support_copyboolPage support copy (NVR, DVR dedicated).

Table 3

ParameterRangeTypeDescription
CH1Json ObjectJSON show as follow Table 4
Json Object
IP_CH1Json Object
Json Object
WIFI_CH1Json Object
Json Object

Table 4

ParameterRangeTypeDescription
status"Offline",
"Online"
stringChannel online status, only for digital channels.
Note: This field does not exist when the channel is online.
privacy_zone_enableBoolVideo block switch.
zone_info_pJSON arrayJSON show as follow Table 5
Note: The onvif protocol supports up to four occlusion areas.
copy_ch"digit""analog""wifi"stringSupport channel replication logo (NVR, DVR special).

Table 5

ParameterRangeTypeDescription
zone_no1-8intOccluded area number.
zone_enableboolOccluded area switch.
pointJSON arrayJSON show as follow Table 6

Table 6

ParameterRangeTypeDescription
left0-704intX Coordinate
top0-576intY Coordinate
width0-704intWidth
height0-576intHeight

Tips:

The response message of the Range request may not contain all the fields in the above table, and the fields not included indicate that the device does not support this parameter configuration.

Sample:

HTTP/1.1 200 OK
Content-Type: application/json
{
	"result": "success",
	"data": {
		"channel_max": 16,
		"channel_info": {
			"type": "object",
			"items": {
				"CH1": {
					"type": "object",
					"items": {
						"status": {
							"description": "Only offline channel has this variable.",
							"type": "string",
							"mode": "r",
							"items": [
								"Offline",
								"Online"
							]
						},
						"privacy_zone_enable": {
							"type": "bool"
						},
						"zone_info": {
							"type": "array",
							"min_size": 0,
							"max_size": 4,
							"items": [
								{
									"zone_no": 1,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 2,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 3,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 4,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								}
							]
						}
					}
				},
				"CH2": {
					"type": "object",
					"items": {
						"status": {
							"description": "Only offline channel has this variable.",
							"type": "string",
							"mode": "r",
							"items": [
								"Offline",
								"Online"
							]
						},
						"privacy_zone_enable": {
							"type": "bool"
						},
						"zone_info": {
							"type": "array",
							"min_size": 0,
							"max_size": 6,
							"items": [
								{
									"zone_no": 1,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 2,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 3,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 4,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 5,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 6,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								}
							]
						}
					}
				},
				"CH3": {
					"type": "object",
					"items": {
						"status": {
							"description": "Only offline channel has this variable.",
							"type": "string",
							"mode": "r",
							"items": [
								"Offline",
								"Online"
							]
						},
						"privacy_zone_enable": {
							"type": "bool"
						},
						"zone_info": {
							"type": "array",
							"min_size": 0,
							"max_size": 4,
							"items": [
								{
									"zone_no": 1,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 2,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 3,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 4,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								}
							]
						}
					}
				},
				"CH4": {
					"type": "object",
					"items": {
						"status": {
							"description": "Only offline channel has this variable.",
							"type": "string",
							"mode": "r",
							"items": [
								"Offline",
								"Online"
							]
						},
						"privacy_zone_enable": {
							"type": "bool"
						},
						"zone_info": {
							"type": "array",
							"min_size": 0,
							"max_size": 4,
							"items": [
								{
									"zone_no": 1,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 2,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 3,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 4,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								}
							]
						}
					}
				},
				"CH5": {
					"type": "object",
					"items": {
						"status": {
							"description": "Only offline channel has this variable.",
							"type": "string",
							"mode": "r",
							"items": [
								"Offline",
								"Online"
							]
						},
						"zone_info": {
							"type": "array",
							"min_size": 0,
							"max_size": 4,
							"items": [
								{
									"zone_no": 1,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 2,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 3,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 4,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								}
							]
						}
					}
				},
				"CH6": {
					"type": "object",
					"items": {
						"status": {
							"description": "Only offline channel has this variable.",
							"type": "string",
							"mode": "r",
							"items": [
								"Offline",
								"Online"
							]
						},
						"privacy_zone_enable": {
							"type": "bool"
						},
						"zone_info": {
							"type": "array",
							"min_size": 0,
							"max_size": 4,
							"items": [
								{
									"zone_no": 1,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 2,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 3,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 4,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								}
							]
						}
					}
				},
				"CH7": {
					"type": "object",
					"items": {
						"status": {
							"description": "Only offline channel has this variable.",
							"type": "string",
							"mode": "r",
							"items": [
								"Offline",
								"Online"
							]
						},
						"privacy_zone_enable": {
							"type": "bool"
						},
						"zone_info": {
							"type": "array",
							"min_size": 0,
							"max_size": 4,
							"items": [
								{
									"zone_no": 1,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 2,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 3,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 4,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								}
							]
						}
					}
				},
				"CH8": {
					"type": "object",
					"items": {
						"status": {
							"description": "Only offline channel has this variable.",
							"type": "string",
							"mode": "r",
							"items": [
								"Offline",
								"Online"
							]
						},
						"privacy_zone_enable": {
							"type": "bool"
						},
						"zone_info": {
							"type": "array",
							"min_size": 0,
							"max_size": 4,
							"items": [
								{
									"zone_no": 1,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 2,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 3,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 4,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								}
							]
						}
					}
				},
				"CH9": {
					"type": "object",
					"items": {
						"status": {
							"description": "Only offline channel has this variable.",
							"type": "string",
							"mode": "r",
							"items": [
								"Offline",
								"Online"
							]
						},
						"privacy_zone_enable": {
							"type": "bool"
						},
						"zone_info": {
							"type": "array",
							"min_size": 0,
							"max_size": 4,
							"items": [
								{
									"zone_no": 1,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 2,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 3,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 4,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								}
							]
						}
					}
				},
				"CH10": {
					"type": "object",
					"items": {
						"status": {
							"description": "Only offline channel has this variable.",
							"type": "string",
							"mode": "r",
							"items": [
								"Offline",
								"Online"
							]
						},
						"privacy_zone_enable": {
							"type": "bool"
						},
						"zone_info": {
							"type": "array",
							"min_size": 0,
							"max_size": 6,
							"items": [
								{
									"zone_no": 1,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 2,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 3,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 4,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 5,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 6,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								}
							]
						}
					}
				},
				"CH11": {
					"type": "object",
					"items": {
						"status": {
							"description": "Only offline channel has this variable.",
							"type": "string",
							"mode": "r",
							"items": [
								"Offline",
								"Online"
							]
						},
						"privacy_zone_enable": {
							"type": "bool"
						},
						"zone_info": {
							"type": "array",
							"min_size": 0,
							"max_size": 4,
							"items": [
								{
									"zone_no": 1,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 2,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 3,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 4,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								}
							]
						}
					}
				},
				"CH12": {
					"type": "object",
					"items": {
						"status": {
							"description": "Only offline channel has this variable.",
							"type": "string",
							"mode": "r",
							"items": [
								"Offline",
								"Online"
							]
						},
						"privacy_zone_enable": {
							"type": "bool"
						},
						"zone_info": {
							"type": "array",
							"min_size": 0,
							"max_size": 4,
							"items": [
								{
									"zone_no": 1,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 2,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 3,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 4,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								}
							]
						}
					}
				},
				"CH13": {
					"type": "object",
					"items": {
						"status": {
							"description": "Only offline channel has this variable.",
							"type": "string",
							"mode": "r",
							"items": [
								"Offline",
								"Online"
							]
						},
						"privacy_zone_enable": {
							"type": "bool"
						},
						"zone_info": {
							"type": "array",
							"min_size": 0,
							"max_size": 4,
							"items": [
								{
									"zone_no": 1,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 2,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 3,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 4,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								}
							]
						}
					}
				},
				"CH14": {
					"type": "object",
					"items": {
						"status": {
							"description": "Only offline channel has this variable.",
							"type": "string",
							"mode": "r",
							"items": [
								"Offline",
								"Online"
							]
						},
						"privacy_zone_enable": {
							"type": "bool"
						},
						"zone_info": {
							"type": "array",
							"min_size": 0,
							"max_size": 4,
							"items": [
								{
									"zone_no": 1,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 2,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 3,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 4,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								}
							]
						}
					}
				},
				"CH15": {
					"type": "object",
					"items": {
						"status": {
							"description": "Only offline channel has this variable.",
							"type": "string",
							"mode": "r",
							"items": [
								"Offline",
								"Online"
							]
						},
						"privacy_zone_enable": {
							"type": "bool"
						},
						"zone_info": {
							"type": "array",
							"min_size": 0,
							"max_size": 4,
							"items": [
								{
									"zone_no": 1,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 2,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 3,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 4,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								}
							]
						}
					}
				},
				"CH16": {
					"type": "object",
					"items": {
						"status": {
							"description": "Only offline channel has this variable.",
							"type": "string",
							"mode": "r",
							"items": [
								"Offline",
								"Online"
							]
						},
						"privacy_zone_enable": {
							"type": "bool"
						},
						"zone_info": {
							"type": "array",
							"min_size": 0,
							"max_size": 4,
							"items": [
								{
									"zone_no": 1,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 2,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 3,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								},
								{
									"zone_no": 4,
									"zone_enable": {
										"type": "bool"
									},
									"rect": {
										"type": "object",
										"items": {
											"left": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"top": {
												"type": "int32",
												"min": 0,
												"max": 576
											},
											"width": {
												"type": "int32",
												"min": 0,
												"max": 704
											},
											"height": {
												"type": "int32",
												"min": 0,
												"max": 576
											}
										}
									}
								}
							]
						}
					}
				}
			}
		}
	}
}

Error Code

See Response Messages Body and Common error_code for more information.